Source=localhost;^Source=@SQL_SERVER_NAME;Network Library=DBMSSOCN;
source=localhost;^source=@SQL_SERVER_NAME;Network Library=DBMSSOCN;
localhost:16050^@SVCS_ENDPOINT_PORT
http://localhost:90/ReportServer/ReportService2005.asmx^@REPORT_SVC_URL
<add key="AuditServer" value="localhost" />^<add key="AuditServer" value="@AUDIT_SVR" />
<add key="AuditPort" value="16050" />^<add key="AuditPort" value="@AUDIT_PORT" />
domain\superuser^@SUPER_USER_LIST
<add key="SmtpHost" value="localhost"/>^<add key="SmtpHost" value="@SMTP_HOST"/>
<userPrincipalName value="abogdan@softinfo.ro" />^<userPrincipalName value="@USER_PRINCIPLE_HOST" />
<endpoint address="http://localhost:87/QuerySvc.asmx" binding="basicHttpBinding"^<endpoint address="@MDWS_URL" binding="basicHttpBinding"
<endpoint address="http://localhost/mdws2/QuerySvc.asmx" binding="basicHttpBinding"^<endpoint address="@MDWS_URL" binding="basicHttpBinding"
<add key="UsingNewMdwsMethods" value="false"/>^<add key="UsingNewMdwsMethods" value="@MDWS_VER"/>
https://hceveah03:100/Inpatient.asmx^https://@NUMI_SVR/Inpatient.asmx
<add key="UseCacheEndpointFromConfigWithSsl" value="false"/>^<add key="UseCacheEndpointFromConfigWithSsl" value="true"/>
catalog=LOG;^catalog=BMS_LOG;
<compilation debug="true" targetFramework="4.0">^<compilation debug="false" targetFramework="4.0">
<add key="DisplayDetailedErrorMessage" value="true"/>^<add key="DisplayDetailedErrorMessage" value="false"/>
<forms loginUrl="~/Account/LogOn" timeout="50000000" />^<forms loginUrl="~/Account/LogOn" timeout="50000000" requireSSL="true" />

add this to <system.web>
<httpCookies requireSSL="true" />

add this to <system.webserver>
<rewrite>
	<rules>
		<rule name="HTTP to HTTPS redirect" stopProcessing="true">
                                	<match url="(.*)" />
                                	<conditions>
                                		<add input="{HTTPS}" pattern="off" ignoreCase="true" />
                                	</conditions>
                                	<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
                                </rule>
	</rules>
</rewrite>
